import React from 'react'; import reactLogo from './assets/react.svg'; import Icon from './components/Icon'; import Button from './components/Button'; const App: React.FC = () => { const styles = { container: { display: 'flex', alignItems: 'center', justifyContent: 'center', height: '100%', width: '100%', flexDirection: 'column' as const, }, banner: { display: 'flex', alignItems: 'center', gap: '18px', marginBottom: '16px', }, docsButton: { position: 'absolute', right: 16, bottom: 16, }, }; return (
Svelte logo
); }; export default App;